home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / reviews / u2_04 < prev    next >
Text File  |  1993-10-04  |  55KB  |  1,421 lines

  1. U2-04:  Operating System Utilities
  2.  
  3.  
  4. ------------------------
  5. 1346 DOS Command Editors          Small Programs Disk
  6. ------------------------
  7.  
  8. For an understanding of what DOS Command Editors do, read the CED writeup
  9. first. CED (and the others) are similar in some ways to key macro programs and
  10. "shorthand" utilities which allow you to type in just part of a word and the
  11. computer fills in the rest. For more on these utilities, see the Keyboard
  12. section.
  13.  
  14. Note: Many BBS's and libraries still carry DOS-EDIT even though it is a
  15. pirated program and not public domain. DOS-EDIT was sold by IBM in its
  16. Personally Developed Software series under the name RETRIEVE. Besides DOS-EDIT
  17. not being public domain, CED is much better anyway. To further confuse things,
  18. PC Magazine also came out with a similar utility with the name DOSEDIT. CED is
  19. still better.
  20.  
  21. Command EDitor (CED)
  22.    Dunford, Christopher J.
  23.    $0
  24. is a TSR that improves command line editing in DOS, lets you scroll back
  25. through previous commands to edit and/or re-execute them, lets you create the
  26. equivalent of in-memory batch files,
  27.  
  28.      -command scrolling:  you can use the up and down cursor keys to scroll
  29. back through previously entered commands in DOS.  If you are doing repetitive
  30. tasks while in DOS, this keeps you from having to retype the same lines over
  31. and over.
  32.  
  33.      -use of the cursor keys: now if you make a mistake while typing in DOS,
  34. you can use the cursor keys to go back and correct it instead of having to
  35. erase what you have already typed.  This feature combines nicely with command
  36. scrolling.  For example, if you want copy the file DATABASE from drive C:  to
  37. drive A:  and then to drive B:, at the C> prompt you would enter COPY DATABASE
  38. A:  and when it was done, press the up cursor.  This redisplays the last
  39. command and leaves the cursor at the end of the command so that all you have
  40. to do is press the left cursor key twice change the A to B and press Enter.
  41.  
  42.      -recall of program parameters (PCALL): after you have run a program once,
  43. the next time you call the program, CED will insert the same parameters for
  44. you. For example, if you enter
  45.  
  46.          link myprog+module1+module2+module3+module4+module5+module6
  47.  
  48. the next time you run LINK, all the rest of the line will be entered for you
  49. automatically.
  50.  
  51.      -synonyms:  have you ever typed in DUR or DRI instead of DIR? No sweat.
  52. Just tell CED that when it sees those popular typo's, to treat them as DIR.
  53. DOS-Edit referred to these as Aliases.
  54.  
  55.      A simple CED synonym definition is set up like this:  CED SYN DUR DIR.
  56. This tells CED that if you type in DUR, to substitute the word DIR in its
  57. place before passing it along to DOS to act on.  Nice, but where the power of
  58. synonyms comes into play is that you can use variables the way you would in
  59. batch files, and you can chain a series of commands to be assigned to one
  60. synonym.  Example:
  61.  
  62.                    CED SYN EDIT CD \WP^WS %1^COPY %1 A:^CD\
  63.  
  64.      Now if you enter EDIT LETTER.TXT, the current directory will be changed
  65. to WP, your word processing subdirectory, WordStar will be called and told to
  66. edit the file LETTER.TXT.  When you finally exit WS, the file LETTER.TXT will
  67. be copied to a backup disk in drive A:, and you will be returned to the root
  68. directory again.
  69.  
  70.      -MANY OF YOUR BATCH FILES ARE NO LONGER NEEDED. On a hard disk, a small
  71. batch file to do the job that the synonym above is doing would take up the
  72. drive's minimum allocation of space, which may be as much as 8,000 characters.
  73. If you have many of these little batch files, they can use up and enormous
  74. amount of disk space.  Now you can make them into synonyms and free up that
  75. disk space.
  76.  
  77.      -SYNONYMS RESIDE IN MEMORY and execute at RAM speed instead of disk
  78. speed.  If you have a floppy based system, you no longer have to switch disks
  79. to use a batch file, and the speed increase is remarkable.
  80.  
  81. Cedsyn 1.02
  82.    Modak, Anand
  83.    $?
  84. creates CED Synonyms for changing directories.  (See write-up of CED, above.)
  85. CEDSYN reads your hard disk and creates a SYN of a "2" followed by the
  86. directory name for each directory.  Then when you want to change directories
  87. (say, for example, to C:\WP\LET), you would just enter "2LET" and the CED SYN
  88. will execute the command CD\WP\LET.  After CEDSYN has added the synonyms to
  89. your CED file, it does not have to be run again.
  90.  
  91. AI 2.1
  92.    Toft, George
  93.    $24
  94. is an artificially intelligent command line interface that corrects your typing
  95. errors in DOS by learning what you really meant based on your previous mistakes
  96. and corrections. It also allows the use of cursor keys on the DOS command line.
  97.  
  98. CShell
  99.    is a COMMAND.COM replacement.  It implements unix-like shell commands such
  100. as ls, mv, fgrep, rm, chdir, chmod,etc.  It also allows recalling and editing
  101. previous commands.
  102.  
  103. DOSinp 1.0
  104.    Mercie, Kenneth J.
  105.    $10
  106. is another one of those memory resident programs that provide DOS command line
  107. editing.  Along with the editing features, DOSINP will let you recall the
  108. previous 20 command line entries; display a window with the available previous
  109. commands; delete unwanted commands from the command window; program the 10
  110. Function keys; flush the typeahead keyboard buffer, at any time; remove TSR's
  111. from memory.  At only 8k of DOS RAM used for DOSINP, this is a very attractive
  112. alternative to similar utilities.  (res:8k)
  113.  
  114. Edicom-12 (EDC)
  115.    Edicom Systems
  116.    $26
  117. is a DOS command processor and more.  It will recall up to 12 previous
  118. commands entered in DOS for easy changing and re-execution.  It lets you
  119. execute commands with a single keystroke, find files, page through text files,
  120. and prevent accidental overwriting of files - all without slowing you down
  121. while working in DOS.
  122.  
  123. History
  124.    Rubenstein, Michael M.
  125.    $?
  126. is a DOS command recall and editing utility with a nice touch - the ability to
  127. recall a previous DOS command line without scrolling back through them all by
  128. entering the first few letters and pressing Ctrl-L.  History is interesting in
  129. that most of the command and editing function keys are also executable as
  130. control key combinations, for those who don't like to pick up their hands from
  131. the keyboard.  Another interesting feature is the History's ability to search
  132. the command buffer for a line that matches the first few characters entered.
  133. (res:5.5k)
  134.  
  135. LogOut 1.71
  136.    Messer, Greg
  137.    $0
  138. is a 1k TSR that will send keystrokes to the keyboard after a specified period
  139. of system inactivity has passed. The result is the same as if you manually typed
  140. the keystrokes. You may specify that "system inactivity" be determined by
  141. monitoring any combination of the keyboard, disk, printer or screen.
  142.  
  143. LogOut could be used to save work, close files, exit a program, log off a
  144. network, etc, when a system is not used for a period of time. Up to 127
  145. keystrokes can be stored in a file for passing to the keyboard.
  146.  
  147. Recall 2.1
  148.    g.r.a.m.  Associates
  149.    $?
  150. permits the user to retrieve any one of up to 50 unique DOS commands
  151. previously issued by the user. Once retrieved, the command may be executed as
  152. is or modified by the user via the normal DOS line editing keys.
  153.  
  154. Show (SHOW-DT)
  155.    Toedt, D. C.
  156.    $0
  157. is a batch file that allows beginning users to easily execute many common DOS
  158. commands without having to remember the syntax.
  159.  
  160. --------------------------------
  161. END OF SMALL PROGRAMS DISK #1346
  162. --------------------------------
  163.  
  164.  
  165. ----------------------------
  166. 12014 DOS Command Editors #2          Small Programs Disk
  167. ----------------------------
  168.  
  169. PC-Shell
  170.    is a command processor for IBM-PC's and compatibles that emulates some of
  171. the more desirable functions of the Berkeley UNIX* C-shell.  In addition, it
  172. implements PC-DOS versions of some of the common UNIX* commands such as ls,
  173. mv, cp, etc.  It also allows "history substitution" which saves retyping of
  174. long command lines.
  175.  
  176. It allows you to do things like re-execute the last command, re-execute the
  177. last command but redirect output to a file, or execute a new command with
  178. arguments from previous command l